home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-03 | 601 b | 35 lines | [TEXT/R*ch] |
- /*====================================================================
- Sample 8.def ©1996 Yosuke "Basuke" Suzuki.
-
- How to access view of the bar.
- ====================================================================*/
-
- partData := {
- //
- // Actual button is defined in afterscript of "Sample 8.t"
- //
- };
-
-
- InstallScript := func(partFrame,removeFrame)
- begin
-
- //
- // register button
- //
-
- call kRegTapBarButtonFunc with (kAppSymbol, partFrame.partData.button);
- end;
-
-
- RemoveScript := func(removeFrame)
- begin
-
- //
- // unregister button
- //
-
- call kUnRegTapBarButtonFunc with (kAppSymbol);
- end;
-
-